home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / DEV / A-B / 001. Sample.cpt / PSample.make < prev    next >
Text File  |  1988-08-01  |  2KB  |  55 lines

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    MultiFinder-Aware Simple Sample Application
  5. #
  6. #    Sample
  7. #
  8. #    PSample.make    -    Make Source
  9. #
  10. #    Copyright © 1988 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    1.0                    8/88
  14. #
  15. #    Components:    Sample.p            August 1, 1988
  16. #                Sample.c            August 1, 1988
  17. #                Sample.r            August 1, 1988
  18. #                Sample.h            August 1, 1988
  19. #                PSample.make        August 1, 1988
  20. #                CSample.make        August 1, 1988
  21. #
  22. #    Sample is an example application that demonstrates how to
  23. #    initialize the commonly used toolbox managers, operate 
  24. #    successfully under MultiFinder, handle desk accessories, 
  25. #    and create, grow, and zoom windows.
  26. #
  27. #    It does not by any means demonstrate all the techniques 
  28. #    you need for a large application. In particular, Sample 
  29. #    does not cover exception handling, multiple windows/documents, 
  30. #    sophisticated memory management, printing, or undo. All of 
  31. #    these are vital parts of a normal full-sized application.
  32. #
  33. #    This application is an example of the form of a Macintosh 
  34. #    application; it is NOT a template. It is NOT intended to be 
  35. #    used as a foundation for the next world-class, best-selling, 
  36. #    600K application. A stick figure drawing of the human body may 
  37. #    be a good example of the form for a painting, but that does not 
  38. #    mean it should be used as the basis for the next Mona Lisa.
  39. #
  40. #    We recommend that you review this program or TESample before 
  41. #    beginning a new application.
  42. #
  43.  
  44. PObjs        = Sample.p.o ∂
  45.         "{Libraries}"Runtime.o ∂
  46.         "{Libraries}"Interface.o ∂
  47.         "{PLibraries}"PasLib.o
  48.  
  49. PSample        ƒƒ {PObjs} PSample.make
  50.         Link -o {Targ} {PObjs}
  51.         SetFile {Targ} -t APPL -c 'MOOS' -a B
  52.  
  53. PSample        ƒƒ Sample.r Sample.h PSample.make
  54.         Rez -rd -o {Targ} Sample.r -append
  55.